Platform Explorer / Nuxeo Platform LTS 2017 9.10

Contribution org.nuxeo.ecm.platform.userworkspace.actions--actions

This contribution is part of XML component org.nuxeo.ecm.platform.userworkspace.actions inside nuxeo-platform-userworkspace-web-9.10.jar /OSGI-INF/userworkspace-actions-contrib.xml

Extension Point

Extension point actions of component ActionService.

Contributed Items

  • <action enabled="true" icon="/icons/go_to_repository.gif" id="SHOW_REPOSITORY" label="command.user.return.to.repository" link="#{userWorkspaceManagerActions.navigateToOverallWorkspace}" order="60">
          <category>USER_MENU_ACTIONS</category>
          <filter-id>isInsidePersonalWorkspace</filter-id>
        </action>
  • <action enabled="true" icon="/icons/show_personal_workspace.gif" id="SHOW_PERSONAL_WORKSPACE" label="command.user.personal.workspace" link="#{userWorkspaceManagerActions.navigateToCurrentUserPersonalWorkspace}" order="61">
          <category>USER_MENU_ACTIONS</category>
          <filter-id>not_anonymous</filter-id>
          <filter-id>not_transient_user</filter-id>
          <filter-id>canAccessPersonalWorkspace</filter-id>
        </action>

XML Source

<extension point="actions" target="org.nuxeo.ecm.platform.actions.ActionService">
    <action enabled="true" icon="/icons/go_to_repository.gif" id="SHOW_REPOSITORY" label="command.user.return.to.repository" link="#{userWorkspaceManagerActions.navigateToOverallWorkspace}" order="60">
      <category>USER_MENU_ACTIONS</category>
      <filter-id>isInsidePersonalWorkspace</filter-id>
    </action>

    <action enabled="true" icon="/icons/show_personal_workspace.gif" id="SHOW_PERSONAL_WORKSPACE" label="command.user.personal.workspace" link="#{userWorkspaceManagerActions.navigateToCurrentUserPersonalWorkspace}" order="61">
      <category>USER_MENU_ACTIONS</category>
      <filter-id>not_anonymous</filter-id>
      <filter-id>not_transient_user</filter-id>
      <filter-id>canAccessPersonalWorkspace</filter-id>
    </action>
  </extension>